|
VMware View 5 Implementation : Installing Microsoft SQL Server (part 1) |
It is quite common to run into a deployment in which the SQL Server instance is already up and running, but the management tool has not been installed. Because the 2008 Management Tools are no longer available as a separate download, it is possible to use SQL Express Management Studio 2005. |
|
|
|
|
|
|
SQL Server 2012 : Transact-SQL - Functions, Triggers |
A trigger is a special kind of stored procedure that is executed when a special event happens within SQL Server. An event could include the execution of a given DDL or DML statement or a login to SQL Server. |
|
SQL Server 2012 : Transact-SQL - Stored Procedures |
A stored procedure is a block of T-SQL or .NET code that is stored within a database. This code is similar to other procedures in other languages because it accepts parameters as inputs and can provide output to the calling application or user. Stored procedures make building database applications easy. |
|
SQL Server 2012 : Transact-SQL - Transactions |
Transactions enable users to create T-SQL batch statements that are either completely applied or do nothing to the existing data. When changes are applied, it is said that the transaction has committed. |
|
|
SQL Server 2012 : Transact-SQL - Data Manipulation Language (part 1) |
Most of what you’ll do with T-SQL centers around the Data Manipulation Language (DML). DML consists of the four statements SELECT, INSERT, UPDATE, and DELETE. These are the four statements that you use to get data into a database, update and delete that data, and get it back out again. |
|
|
|
SQL Server 2012 : Latch Contention Examples - Queuing |
Another typical scenario that can exhibit large amounts of latch contention is a system designed to allow queuing, for similar reasons to the last example, although exhibited in a slightly different way, and certainly resolved with a different method. |
|
|
|
|
SQL Server 2012 : Latches and Spinlocks - Latch Types, Latch Modes |
There are hundreds of different types of latch, most of which you are unlikely to encounter in any meaningful way when you are working with SQL Server. While latch waits will occasionally show up in sys.dm_os_wait_stats, you normally have to actively search for them. As a rule, they don’t come to you. |
|
|
|
|
|
|
|
|
|
|
|
|
|
SQL server 2008 R2 : Reverting to a Database Snapshot for Recovery |
If you have a database snapshot defined for a source database, you can use that snapshot to revert the source database to that snapshot’s point-in-time milestone. In other words, you consciously overlay a source database with the point-in-time representation of that database (which you got when you created a snapshot). |
|
SQL server 2008 R2 : Setup and Breakdown of a Database Snapshot |
You might actually be surprised to find out how easily you can set up a database snapshot. This simplicity is partly due to the level at which database snapshots are created: at the database level and not at the table level. Setting up a database snapshot only entails running a CREATE DATABASE with the AS SNAPSHOT OF statement. |
|
|
|
|
|
SQL Server 2012 : Running SQL Server in A Virtual Environment - VIRTUALIZATION CONCEPTS |
Like any technology, virtualization covers a minefield of new terminology, features, and capabilities. To make things even more complicated, different vendors often use different terms for the same item. To help remove that ambiguity, this section covers the main terms and features commonly used by virtualization software currently being deployed. |
|
|
|
|
SQL Server 2012 : Data Architecture (part 2) - Smart Database Design |
More than a few databases do not adhere to the principles of information architecture, and as a result, fail to meet organization's needs. In nearly every case, the root cause of the failure was the database design. It was too complex, too clumsy, or just plain inadequate. |
|
|
|
|
|
|
|
SQL Server 2008 R2 : Performance Monitoring Tools (part 7) - SQL Server Extended Events |
SQL Server Extended Events (SSEE) are truly the future event-oriented framework that all SQL Server–based systems and applications will be using going forward. Extended Events are highly flexible to define, are able to capture almost any action or event within your reach, are lightweight in their implementation, and are flexible enough to create simple or complex monitoring across multiple systems and environments. |
|
SQL Server 2008 R2 : Performance Monitoring Tools (part 6) - SQL Server Utility |
SQL Server 2008 R2 introduces a new multiserver management tool named the SQL Server Utility. This new tool takes performance monitoring in SQL Server to the next level by providing the capability to monitor specific performance metrics for one or more SQL Server instances in a single view from a single SQL Server instance. |
|